29d55ad1e5824b9b88f942a02285d28ff97952db,src/main/java/org/fxmisc/flowless/VirtualizedScrollPane.java,VirtualizedScrollPane,VirtualizedScrollPane,#V#,21

Before Change


        Bindings.bindBidirectional(
                Var.doubleVar(hbar.valueProperty()),
                content.estimatedScrollXProperty());
        Bindings.bindBidirectional(
                Var.doubleVar(vbar.valueProperty()),
                content.estimatedScrollYProperty());

        // scrollbar visibility
        Val<Double> layoutWidth = Val.map(layoutBoundsProperty(), Bounds::getWidth);

After Change


        Bindings.bindBidirectional(
                hbarValue,
                content.estimatedScrollXProperty());
        Bindings.bindBidirectional(
                vbarValue,
                content.estimatedScrollYProperty());

        // scrollbar visibility
        Val<Double> layoutWidth = Val.map(layoutBoundsProperty(), Bounds::getWidth);